/* Genel Ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff8f0;
    color: #333;
}

/* Header */
header {
    background-color: #8b5e3c;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

/* Hakkımızda Bölümü */
.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-content h2 {
    color: #8b5e3c;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Fotoğraf */
.about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #8b5e3c;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
}
